home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / btrieve / btfiler / bttest.bat < prev    next >
DOS Batch File  |  1996-07-10  |  566b  |  20 lines

  1. echo off
  2. if '%1' == '' goto NO_PARMS
  3. goto OK
  4. :NO_PARMS
  5. echo USAGE: BTTEST btrieve_file
  6. goto END
  7. :OK
  8. rem
  9. rem 'T' to choose Test on opening menu, 'I' for Index testing, '^' and 'C'
  10. rem    to clear the field, %1 to get the file name, '!' for enter on file
  11. rem    name, and '!' to test all indices.  '###' to escape
  12. rem
  13. rem Remember that if more than one person on a network are using this, a
  14. rem    temporary file with a unique file name should be created.
  15. rem
  16. echo TI^C%1!!################# >bttest.txt
  17. btfiler /k:bttest.txt /L
  18. del bttest.txt
  19. :END
  20.